home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-07-28 | 1.7 KB | 63 lines |
- # Makefile for rc.
-
- # Please check the configuration parameters in config.h (and if you want
- # to make sure, the definitions in proto.h) to make sure they are correct
- # for your system.
-
- SHELL=/bin/sh
-
- # Uncomment this line if you have defined the NOEXECVE macro in config.h
- #EXECVE=execve.o
-
- # Define this macro if you wish to extend rc via locally-defined builtins.
- # An interface is provided in addon.h. Note that the author does not
- # endorse any such extensions, rather hopes that this way rc will become
- # useful to more people. All files of the form b_*.c will be compiled as
- # builtins.
- ADDON=$(subst .c,.o, $(wildcard b_*.c)) # GNU make SPECIFIC !!!
-
- # Use an ANSI compiler (or at least one that groks prototypes and void *):
- CC=gcc
- CFLAGS=-O2 -fomit-frame-pointer -funroll-loops -DSYSVR4 -DADDON
- LDFLAGS=-s #-static -lreadline -ltermcap # uncomment if compiling in readline
-
- # You may substitute "bison -y" for yacc. (You want to choose the one that
- # makes a smaller y.tab.c. Also see the README about Sun's yacc.)
- YACC=yacc
-
- OBJS=$(ADDON) builtins.o except.o exec.o $(EXECVE) fn.o footobar.o getopt.o \
- glob.o glom.o hash.o heredoc.o input.o lex.o list.o main.o match.o \
- nalloc.o open.o print.o redir.o sigmsgs.o signal.o status.o tree.o \
- utils.o var.o version.o wait.o walk.o which.o y.tab.o
-
- rc: $(OBJS)
- $(CC) -o $@ $(OBJS) $(LDFLAGS)
-
- sigmsgs.c: mksignal
- sh mksignal /usr/include/sys/signal.h
-
- y.tab.c: parse.y
- $(YACC) -d parse.y
-
- config.h: config.h-dist
- cp config.h-dist config.h
-
- trip: rc
- ./rc -p < trip.rc
-
- clean: force
- rm -f *.o *.tab.*
-
- history: force
- cd history; make CC="$(CC)" $(HISTORYMAKEFLAGS)
-
- force:
-
- # dependencies:
-
- $(OBJS): config.h
- sigmsgs.h: sigmsgs.c
- lex.o y.tab.o: y.tab.c
- builtins.c fn.c status.c hash.c: sigmsgs.h
- builtins.o: addon.h
-